<?php $settings = AdminSettings::first(); ?>

<?php $__env->startSection('title'); ?><?php echo e($title); ?><?php $__env->stopSection(); ?>

<?php $__env->startSection('jumbotron'); ?>
 <div class="jumbotron static-header">
      <div class="container wrap-jumbotron">
        <h1 class="title-item none-overflow">
        	<a href="<?php echo URL::to('/'); ?>" class="link-home">
        		<i class="glyphicon glyphicon-home myicon-right"></i> <i class="fa fa-angle-right myicon-right"></i>
        	</a> <?php echo Lang::get('misc.search'); ?> <small>/ <?php echo e(Str::title( Input::get('q') )); ?></small>
        	</h1>
       </div>
    </div>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?> 

<!-- Col MD -->
<div class="col-md-12">	
		          
<h1 class="title-item none-overflow">
	<?php echo e(Str::title( Input::get('q') )); ?> <small><?php echo $total; ?> <?php echo Lang::choice('misc.shots_plural',$total); ?></small>
	
	<small>
		<a href="<?php echo URL::to('search/users?q=').Input::get('q'); ?>" class="pull-right text-decoration-none">
		<i class="icon-users myicon-right"></i> <?php echo Lang::get('users.find_users'); ?> <i class="fa fa-long-arrow-right"></i>
	</a>
	</small>
	</h1>
<hr />

	
	<?php if( $total != 0 ): ?>
	
	<?php echo $__env->make('includes.shots', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
	
	<?php else: ?>
	<div class="btn-block text-center">
	    	<i class="icon-close ico-no-result"></i>
	    </div>
	<h3 class="margin-top-none text-center no-result no-result-mg">
	    	- <?php echo Lang::get('misc.no_results_found'); ?> -
	    	</h3>
	<?php endif; ?>

</div><!-- /COL MD -->
<?php $__env->stopSection(); ?>

<?php echo $__env->make('layouts.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>